/* styles.css */

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype'); /* Adjust the path to your font file */
    /* Add additional font styles (font-weight, font-style) if needed */
  }

  H2 {
    width: 75%; /* Define a largura do parágrafo */
    margin: 0 auto; /* Centraliza horizontalmente */
    text-align: center; /* Centraliza o texto */
  }
  
  p {
    width: 75%; /* Define a largura do parágrafo */
    margin: 0 auto; /* Centraliza horizontalmente */
    text-align: center; /* Centraliza o texto */
  }

  /* Apply Montserrat font to all elements */
  body {
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Apply Montserrat font to specific elements */
  h1, h2, h3, p {
    font-family: 'Montserrat', sans-serif;
  }
  
 
.container {
    text-align: center;
}

/* Center the images */
.container img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
    margin-bottom: 20px; /* Adjust as needed */
}

/* Center the button */ 
.container button {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: black;
    color: white;
    border: 2;
    border-color: black;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}*/